home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000408_jaltman2@nyc.rr.com_Wed Apr 9 08:48:18 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  68 lines

  1. Article: 14211 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!newsfeed.cwix.com!news.maxwell.syr.edu!newsfeed-east.nntpserver.com!nntpserver.com!news-west.rr.com!news-server.columbus.rr.com!cyclone.rdc-nyc.rr.com!news-out.nyc.rr.com!twister.nyc.rr.com.POSTED!53ab2750!not-for-mail
  3. From: "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  4. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) Gecko/20030312
  5. X-Accept-Language: en-us, en
  6. MIME-Version: 1.0
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: init string modification
  9. References: <PIucncSY7NRP8A6jXTWcrg@comcast.com> <Pine.HPX.4.44.0304081817150.5354-100000@fog.ccsf.cc.ca.us>
  10. In-Reply-To: <Pine.HPX.4.44.0304081817150.5354-100000@fog.ccsf.cc.ca.us>
  11. Content-Type: text/plain; charset=us-ascii; format=flowed
  12. Content-Transfer-Encoding: 7bit
  13. Lines: 45
  14. Message-ID: <T_Lka.593$TR5.285@twister.nyc.rr.com>
  15. Date: Wed, 09 Apr 2003 02:57:55 GMT
  16. NNTP-Posting-Host: 66.108.138.151
  17. X-Complaints-To: abuse@rr.com
  18. X-Trace: twister.nyc.rr.com 1049857075 66.108.138.151 (Tue, 08 Apr 2003 22:57:55 EDT)
  19. NNTP-Posting-Date: Tue, 08 Apr 2003 22:57:55 EDT
  20. Organization: Road Runner - NYC
  21. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14211
  22.  
  23. TAPI dialing must be turned off if you want to be able to configure the 
  24. INIT strings from Kermit.  If you do not, you must modify them in the 
  25. Control Panel.
  26.  
  27. SET TAPI MODEM-DIALING {ON, OFF}
  28.  
  29.  
  30.  
  31. Mark Sapiro wrote:
  32. > On Tue, 8 Apr 2003, it was written:
  33. >>Looking for a bit of confirmation or suggestion as to best practice re K95
  34. >>v2.
  35. >>
  36. >>Using tapi (set port tapi), I wish to modify a modem setup string to turn
  37. >>off its' blacklisting "feature".  It occurs to me that all I should have to
  38. >>do in my script is to \Freplace the \v(m-init) string to insert the command,
  39. >>after testing \v(modem) name to insure I don't shoot my self in the foot.
  40. >>Almost too easy?
  41. > Yup!
  42. > Kermit built in variables are read only.  You can't assign or define them
  43. > or change their values with functions.
  44. > You change \v(m_init) with the command
  45. >    SET MODEM COMMAND INIT-STRING
  46. > You might also find useful
  47. >    SET MODEM COMMAND PREDIAL-INIT
  48. > Give the command
  49. >    HELP MODEM
  50. > for more info.
  51. > Note, you can
  52. >    SET MODEM COMMAND INIT-STRING \freplace(\v(m_init),...)
  53. > --
  54. > Mark Sapiro <msapiro@value.net>       The highway is for gamblers,
  55. > San Francisco Bay Area, California    better use your sense - B. Dylan
  56.  
  57.